home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 October / Software of the Month - Ultimate Collection Shareware 277.iso / pc / PROGRAMS / UTILITY / WINLINUX / DATA1.CAB / programs_-_include / ASM-ARM / KEYBOARD.H < prev    next >
C/C++ Source or Header  |  1999-09-17  |  565b  |  25 lines

  1. /*
  2.  * linux/include/asm-arm/keyboard.h
  3.  *
  4.  * Keyboard driver definitions for ARM
  5.  *
  6.  * (C) 1998 Russell King
  7.  */
  8. #ifndef __ASM_ARM_KEYBOARD_H
  9. #define __ASM_ARM_KEYBOARD_H
  10.  
  11. /*
  12.  * We provide a unified keyboard interface when in VC_MEDIUMRAW
  13.  * mode.  This means that all keycodes must be common between
  14.  * all supported keyboards.  This unfortunately puts us at odds
  15.  * with the PC keyboard interface chip... but we can't do anything
  16.  * about that now.
  17.  */
  18. #ifdef __KERNEL__
  19.  
  20. #include <asm/arch/keyboard.h>
  21.  
  22. #endif /* __KERNEL__ */
  23.  
  24. #endif /* __ASM_ARM_KEYBOARD_H */
  25.